Blazor | ComponentOne
C1.Blazor.Core Assembly / C1.Blazor.Core Namespace / Range<T> Class / ReverseIterate Method
A function which takes a value, and returns the previous value.

In This Topic
    ReverseIterate Method
    In This Topic
    Iterates the range in reverse.
    Syntax
    'Declaration
     
    
    Public Function ReverseIterate( _
       ByVal decrementor As Func(Of T,T) _
    ) As IEnumerable(Of T)
    public IEnumerable<T> ReverseIterate( 
       Func<T,T> decrementor
    )

    Parameters

    decrementor
    A function which takes a value, and returns the previous value.

    Return Value

    The items in the range.
    See Also